home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / graphics / gnuplot / gnuplot-3.7.1src / gnuplot-3.7.1 / bitmap.h < prev    next >
C/C++ Source or Header  |  1999-11-29  |  5KB  |  117 lines

  1. /* $Id: bitmTO((int ang));
  2. ,.1 1999/09/29 13:48:16 lhecking Exp $ */
  3.  
  4. /* GNUPLOT - bitmap.h */
  5.  
  6. /*[
  7.  * Copyright 1986 - 1993, 1998   Thomas Williams, Colin Kelley
  8.  *
  9.  * Permission to use, copy, and distribute this software and its
  10.  * documentation for any purpose with or without fee is hereby granted,
  11.  * provided that the above copyright notice appear in all copies and
  12.  * that both that copyright notice and this permission notice appear
  13.  * in supporting documentation.
  14.  *
  15.  * Permission to modify the software is granted, but not the right to
  16.  * distribute the complete modified source code.  Modifications are to
  17.  * be distributed as patches to the released version.  Permission to
  18.  * distribute binaries produced by compiling modified sources is granted,
  19.  * provided you
  20.  *   1. distribute the corresponding source modifications from the
  21.  *    released version in the form of a patch file along with the binaries,
  22.  *   2. add special version identification to distinguish your version
  23.  *    in addition to the base release version number,
  24.  *   3. provide your name and address as the primary contact for the
  25.  *    support of your modified version, and
  26.  *   4. retain our contact information in regard to use of the base
  27.  *    software.
  28.  * Permission to distribute the released version of the source code along
  29.  * with corresponding source modifications in the form of a patch file is
  30.  * granted with same provisions 2 through 4 for binary distributions.
  31.  *
  32.  * This software is provided "as is" without express or implied warranty
  33.  * to the extent permitted by applicable law.
  34. ]*/
  35.  
  36.  
  37. /* allow up to 16 bit width for character array */
  38. typedef unsigned int char_row;
  39. typedef char_row GPFAR * GPFAR char_box;
  40.  
  41. #define FNT_CHARS   96      /* Number of characters in the font set */
  42.  
  43. #define FNT5X9 0
  44. #define FNT5X9_VCHAR 11 /* vertical spacing between characters */
  45. #define FNT5X9_VBITS 9 /* actual number of rows of bits per char */
  46. #define FNT5X9_HCHAR 7 /* horizontal spacing between characters */
  47. #define FNT5X9_HBITS 5 /* actual number of bits per row per char */
  48. extern char_row GPFAR fnt5x9[FNT_CHARS][FNT5X9_VBITS];
  49.  
  50. #define FNT9X17 1
  51. #define FNT9X17_VCHAR 21 /* vertical spacing between characters */
  52. #define FNT9X17_VBITS 17 /* actual number of rows of bits per char */
  53. #define FNT9X17_HCHAR 13 /* horizontal spacing between characters */
  54. #define FNT9X17_HBITS 9 /* actual number of bits per row per char */
  55. extern char_row GPFAR fnt9x17[FNT_CHARS][FNT9X17_VBITS];
  56.  
  57. #define FNT13X25 2
  58. #define FNT13X25_VCHAR 31 /* vertical spacing between characters */
  59. #define FNT13X25_VBITS 25 /* actual number of rows of bits per char */
  60. #define FNT13X25_HCHAR 19 /* horizontal spacing between characters */
  61. #define FNT13X25_HBITS 13 /* actual number of bits per row per char */
  62. extern char_row GPFAR fnt13x25[FNT_CHARS][FNT13X25_VBITS];
  63.  
  64.  
  65. typedef unsigned char pixels;  /* the type of one set of 8 pixels in bitmap */
  66. typedef pixels *bitmap[];  /* the bitmap */
  67.  
  68. extern bitmap *b_p;                        /* global pointer to bitmap */
  69. extern unsigned int b_currx, b_curry;    /* the current coordinates */
  70. extern unsigned int b_xsize, b_ysize;    /* the size of the bitmap */
  71. extern unsigned int b_planes;            /* number of color planes */
  72. extern unsigned int b_psize;            /* size of each plane */
  73. extern unsigned int b_rastermode;        /* raster mode rotates -90deg */
  74. extern unsigned int b_linemask;            /* 16 bit mask for dotted lines */
  75. extern unsigned int b_value;            /* colour of lines */
  76. extern unsigned int b_hchar;            /* width of characters */
  77. extern unsigned int b_hbits;            /* actual bits in char horizontally */
  78. extern unsigned int b_vchar;            /* height of characters */
  79. extern unsigned int b_vbits;            /* actual bits in char vertically */
  80. extern unsigned int b_angle;            /* rotation of text */
  81. extern char_box b_font[FNT_CHARS];        /* the current font */
  82. extern unsigned int b_pattern[];
  83. extern int b_maskcount;
  84. extern unsigned int b_lastx, b_lasty;    /* last pixel set - used by b_line */
  85.  
  86. /* RGB colour table moved out of gif.trm */
  87. /*
  88.  * Common RGB color table for use by all devices.
  89.  * It's a subset of the 216-color Web palette.
  90.  */
  91. #define WEB_N_COLORS 99
  92. struct rgb
  93. {
  94.     unsigned char r, g, b;
  95. };
  96.  
  97. extern struct rgb web_color_rgbs[];
  98.  
  99.  
  100. /* Prototypes from file "bitmap.c" */
  101.  
  102. void b_makebitmap __PROTO((unsigned int x, unsigned int y, unsigned int planes));
  103. void b_freebitmap __PROTO((void));
  104. void b_setpixel __PROTO((unsigned int x, unsigned int y, unsigned int value));
  105. /* unused unsigned int b_getpixel __PROTO((unsigned int x, unsigned int y)); */
  106. void b_line __PROTO((unsigned int x1, unsigned int y1, unsigned int x2, unsigned int y2));
  107. void b_setmaskpixel __PROTO((unsigned int x, unsigned int y, unsigned int value));
  108. /* void b_putc __PROTO((unsigned int x, unsigned int y, char c, unsigned int angle)); */
  109. void b_charsize __PROTO((unsigned int size));
  110. void b_setvalue __PROTO((unsigned int value));
  111.  
  112. void b_setlinetype __PROTO((int linetype));
  113. void b_move __PROTO((unsigned int x, unsigned int y));
  114. void b_vector __PROTO((unsigned int x, unsigned int y));
  115. void b_put_text __PROTO((unsigned int x, unsigned int y, char *str));
  116. int b_text_angle __PROTO((int ang));
  117.